home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Python1.4_Source / Include / ceval.h < prev    next >
C/C++ Source or Header  |  1998-06-24  |  4KB  |  129 lines

  1. #ifndef Py_CEVAL_H
  2. #define Py_CEVAL_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. /***********************************************************
  8. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  9. The Netherlands.
  10.  
  11.                         All Rights Reserved
  12.  
  13. Permission to use, copy, modify, and distribute this software and its
  14. documentation for any purpose and without fee is hereby granted,
  15. provided that the above copyright notice appear in all copies and that
  16. both that copyright notice and this permission notice appear in
  17. supporting documentation, and that the names of Stichting Mathematisch
  18. Centrum or CWI or Corporation for National Research Initiatives or
  19. CNRI not be used in advertising or publicity pertaining to
  20. distribution of the software without specific, written prior
  21. permission.
  22.  
  23. While CWI is the initial source for this software, a modified version
  24. is made available by the Corporation for National Research Initiatives
  25. (CNRI) at the Internet address ftp://ftp.python.org.
  26.  
  27. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  28. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  29. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  30. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  31. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  32. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  33. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  34. PERFORMANCE OF THIS SOFTWARE.
  35.  
  36. ******************************************************************/
  37.  
  38. /* Interface to random parts in ceval.c */
  39.  
  40. PyObject *PyEval_CallObject Py_PROTO((PyObject *, PyObject *));
  41. PyObject *PyEval_CallObjectWithKeywords
  42.     Py_PROTO((PyObject *, PyObject *, PyObject *));
  43.  
  44. PyObject *PyEval_GetBuiltins Py_PROTO((void));
  45. PyObject *PyEval_GetGlobals Py_PROTO((void));
  46. PyObject *PyEval_GetLocals Py_PROTO((void));
  47. PyObject *PyEval_GetOwner Py_PROTO((void));
  48. PyObject *PyEval_GetFrame Py_PROTO((void));
  49. int PyEval_GetRestricted Py_PROTO((void));
  50.  
  51. void Py_FlushLine Py_PROTO((void));
  52.  
  53. int Py_AddPendingCall Py_PROTO((int (*func) Py_PROTO((ANY *)), ANY *arg));
  54. int Py_MakePendingCalls Py_PROTO((void));
  55.  
  56.  
  57. /* Interface for threads.
  58.  
  59.    A module that plans to do a blocking system call (or something else
  60.    that lasts a long time and doesn't touch Python data) can allow other
  61.    threads to run as follows:
  62.  
  63.     ...preparations here...
  64.     Py_BEGIN_ALLOW_THREADS
  65.     ...blocking system call here...
  66.     Py_END_ALLOW_THREADS
  67.     ...interpret result here...
  68.  
  69.    The Py_BEGIN_ALLOW_THREADS/Py_END_ALLOW_THREADS pair expands to a
  70.    {}-surrounded block.
  71.    To leave the block in the middle (e.g., with return), you must insert
  72.    a line containing RET_SAVE before the return, e.g.
  73.  
  74.     if (...premature_exit...) {
  75.         Py_BLOCK_THREADS
  76.         PyErr_SetFromErrno(PyExc_IOError);
  77.         return NULL;
  78.     }
  79.  
  80.    An alternative is:
  81.  
  82.     Py_BLOCK_THREADS
  83.     if (...premature_exit...) {
  84.         PyErr_SetFromErrno(PyExc_IOError);
  85.         return NULL;
  86.     }
  87.     Py_UNBLOCK_THREADS
  88.  
  89.    For convenience, that the value of 'errno' is restored across
  90.    Py_END_ALLOW_THREADS and RET_SAVE.
  91.  
  92.    WARNING: NEVER NEST CALLS TO Py_BEGIN_ALLOW_THREADS AND
  93.    Py_END_ALLOW_THREADS!!!
  94.  
  95.    The function PyEval_InitThreads() should be called only from
  96.    initthread() in "threadmodule.c".
  97.  
  98.    Note that not yet all candidates have been converted to use this
  99.    mechanism!
  100. */
  101.  
  102. extern void PyEval_InitThreads Py_PROTO((void));
  103. extern PyObject *PyEval_SaveThread Py_PROTO((void));
  104. extern void PyEval_RestoreThread Py_PROTO((PyObject *));
  105.  
  106. #ifdef WITH_THREAD
  107.  
  108. #define Py_BEGIN_ALLOW_THREADS { \
  109.             PyObject *_save; \
  110.             _save = PyEval_SaveThread();
  111. #define Py_BLOCK_THREADS    PyEval_RestoreThread(_save);
  112. #define Py_UNBLOCK_THREADS    _save = PyEval_SaveThread();
  113. #define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  114.          }
  115.  
  116. #else /* !WITH_THREAD */
  117.  
  118. #define Py_BEGIN_ALLOW_THREADS {
  119. #define Py_BLOCK_THREADS
  120. #define Py_UNBLOCK_THREADS
  121. #define Py_END_ALLOW_THREADS }
  122.  
  123. #endif /* !WITH_THREAD */
  124.  
  125. #ifdef __cplusplus
  126. }
  127. #endif
  128. #endif /* !Py_CEVAL_H */
  129.